Provides a number of simple metrics (and one slightly more complex one) on a VB project. I'd just finished re-structuring one of my idiot ex-boss's apps, and I was keen to see how much I'd improved it! It scans a VB project's files and counts, amongst other things numbers of lines, variables, constants etc. See the options setup for more. One "interesting" addition is the McCabe Complexity measure (or what "Code Complete" says that is, anyway), which is supposed to give a rule- of-thumb measurement of a routine's complexity, surprisingly enough... It works by assigning a value of 1 to each routine and adding one for each "decision point": things like If, While, For, And, and so on. Routines with high ( > 10 values are worth examining for possible restructuring